home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Programming / DiceSource / test / globlea.c < prev    next >
C/C++ Source or Header  |  1992-11-23  |  180b  |  22 lines

  1.  
  2. extern short x, y;
  3. extern short *z;
  4.  
  5. main()
  6. {
  7.     int *a, *b, c;
  8.  
  9.     c = a - b;
  10.  
  11.  
  12.  
  13.     x = 1;
  14.     x = 1;
  15.     y = 2;
  16.     y = 2;
  17.     z = &y + 2;
  18.     z = &y + 3;
  19.     z = &y + 4;
  20. }
  21.  
  22.